home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 75 / XENIATGM75.iso / Shareware / X-Setup 5.0 / _SETUP.1 / XQ IE Outlook Express 1.xpl < prev    next >
Text File  |  1999-07-16  |  976b  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Outlook Express"
  5. "NAME"="Advanced Options"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.21"
  8. "TEXT 1"="Display Splash Screen"
  9. "DESCRIPTION 1"="Miscellaneous settings for Outlook Express."
  10. "AUTHOR"="Xteq Systems"
  11. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  12. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  13.  
  14.  
  15.  
  16. sPath="HKCU\Software\Microsoft\Outlook Express\"
  17. sNOS="NoSplash"
  18. Sub Plugin_Initialize 
  19.  if RegPathExists(sPath) then
  20.  
  21.   i=RegReadValue(sPath & sNOS)
  22.   if i=0 then
  23.    Call SetUIElement(1,True)
  24.   end if
  25.  
  26.  else
  27.   Disable
  28.  end if
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  i=GetUIElement(1)
  36.  if i=true then
  37.   Call RegWriteValue(sPath & sNOS,0,2)
  38.  else
  39.   Call RegWriteValue(sPath & sNOS,1,2)
  40.  end if
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.